下载内核源rpm -Uvh http://www.elrepo.org/elrepo-release-7.0-3.el7.elrepo.noarch.rpm安装最新版本内核yum --enablerepo=elrepo-kernel install -y kernel-lt查看可用内核 cat >u ...
分类:
其他好文 时间:
2021-06-02 14:26:17
阅读次数:
0
一、概述 zookeeper 类似文件系统,client 可以创建节点、更新节点、删除节点,那么如何做到节点的权限的控制呢?zookeeper的access control list 访问控制列表可以做到这一点。 # 语法 # 采用特定的授权策略给特定的对象授予特定的权限 setAcl path a ...
分类:
其他好文 时间:
2021-06-02 14:07:32
阅读次数:
0
错误: Repository epel is listed more than once in the configurationbintray-rabbitmq-rpm 5.6 B/s | 10 B 00:01 Errors during downloading metadata for repo ...
分类:
其他好文 时间:
2021-06-02 14:01:53
阅读次数:
0
时间复杂度:O(N2) 空间复杂度:O(1) 稳定性:稳定 // 冒泡排序 void bubble_sort(int list[], int listSize) { int i, j, flag; int temp; for (i = listSize - 1; i >= 1; --i) { fla ...
分类:
编程语言 时间:
2021-06-02 13:42:30
阅读次数:
0
List<Obj> test= objList.stream().filter(s -> s.getLicence() != null && s.getLicence().equals(obj.getLicence())).collect(Collectors.<Obj>toList()); ...
分类:
编程语言 时间:
2021-06-02 13:19:18
阅读次数:
0
方法的重载 方法的签名:由方法的名称及它的形参的数量、每个形参的类型组成。不包含返回类型。 方法的重载:同一个类中声明了多个同名的方法但它们的签名不同。即重载就是在一个类中,有相同的函数名称,但形参不同的函数。 方法的重载的规则: 方法名称必须相同。 参数列表必须不同(个数不同、或类型不同、参数排列 ...
分类:
编程语言 时间:
2021-06-02 13:07:52
阅读次数:
0
还是5.7.29,还是CentOS 7 二进制包安装MySQL 一、下载 安装依赖包 yum install ncurses-devel.x86_64 libaio.x86_64 -y 下载MySQL二进制包 方法一:使用wget命令直接下载 wget https://downloads.mysql ...
分类:
数据库 时间:
2021-06-02 12:51:22
阅读次数:
0
一、环境 *centos7.6 二、安装步骤 *设置yum源 yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo yum-config-manager --add-repo htt ...
分类:
其他好文 时间:
2021-06-02 12:47:47
阅读次数:
0
1、controller中的方法 /** * 获取区域树 * @return */ @ResponseBody @RequestMapping("/getAreaInfoTree") public List<AreaInfo> getAreaInfoTree(){ List<AreaInfo> re ...
分类:
编程语言 时间:
2021-06-02 12:47:27
阅读次数:
0
目标 安全 稳定 廉价 快速 容灾 扩展 服务器 基础数据 腾讯云 2核 8GB 5Mbps 安全组配置 开放80、443,允许全部ip访问 开放22、6443,开放当前ip访问 环境 # 卸载firewalld,由安全组统一管理端口 sudo dnf remove firewalld # 关闭交换 ...
分类:
其他好文 时间:
2021-06-02 12:19:37
阅读次数:
0